Schnittstelle ObjectSetting<T>

Typparameter:
T - the type of the value of this setting, this value has to be JSON serializable
Alle Superschnittstellen:
VisibilitySetting

public interface ObjectSetting<T> extends VisibilitySetting
Settings with an arbitrary value.
Seit:
5.0
  • Methodendetails

    • getObject

      T getObject(String value)
      Convert the value String to the actual type
      Parameter:
      value - as String
      Gibt zurück:
      value as actual type T
      Seit:
      5.0
    • getAsString

      String getAsString(T value)
      Convert the value to String
      Parameter:
      value - a value for this SettingTyp
      Gibt zurück:
      value as String for storing
      Seit:
      5.0